home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Multimedia / Movie3.0 / Source / xanim / xanim_pfx.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-02  |  1.6 KB  |  69 lines

  1.  
  2. /*
  3.  * xanim_pfx.h
  4.  *
  5.  * Copyright (C) 1992,1993,1994 by Mark Podlipec. 
  6.  * All rights reserved.
  7.  *
  8.  * This software may be freely copied, modified and redistributed without
  9.  * fee for non-commerical purposes provided that this copyright notice is
  10.  * preserved intact on all copies and modified copies.
  11.  * 
  12.  * There is no warranty or other guarantee of fitness of this software.
  13.  * It is provided solely "as is". The author(s) disclaim(s) all
  14.  * responsibility and liability with respect to this software's usage
  15.  * or its effect upon hardware or computer systems.
  16.  *
  17.  */
  18.  
  19. #include "xanim.h"
  20.  
  21. #define pfx_INIT 0x494e4954
  22. #define pfx_GLOC 0x474c4f43
  23. #define pfx_BITP 0x42495450
  24. #define pfx_XDIM 0x5844494d
  25. #define pfx_YDIM 0x5944494d
  26. #define pfx_GLOV 0x474c4f56
  27. #define pfx_DURA 0x44555241
  28. #define pfx_HIGH 0x48494748
  29. #define pfx_FLAC 0x464c4143
  30. #define pfx_PALL 0x50414c4c
  31. #define pfx_REPE 0x52455045
  32. #define pfx_COUN 0x434f554e
  33. #define pfx_FRAM 0x4652414d
  34. #define pfx_FILE 0x46494c45
  35. #define pfx_A_B  0x29000a00
  36. #define pfx_INTE 0x494e5445
  37. #define pfx_AUST 0x41555354
  38. #define pfx_SPDU 0x53504455
  39. #define pfx_SLWD 0x534c5744
  40.  
  41. #define pfx_RCHG 0x52434847
  42. #define pfx_PARM 0x5041524d
  43. #define pfx_STMT 0x53544d54
  44.  
  45. typedef struct STRUCT_PFX_RCHG_HDR
  46. {
  47.  ULONG orig,dest,len;
  48.  UBYTE *data;
  49.  XA_ACTION *act;
  50.  struct STRUCT_PFX_RCHG_HDR *next;
  51. } PFX_RCHG_HDR;
  52.  
  53. typedef struct STRUCT_PFX_FRAM_HDR
  54. {
  55.  ULONG frame;
  56.  ULONG time;
  57.  struct STRUCT_PFX_FRAM_HDR *next;
  58. } PFX_FRAM_HDR;
  59.  
  60. typedef struct STRUCT_PFX_PLAY_HDR
  61. {
  62.  ULONG type,data;
  63.  LONG count;
  64.  struct STRUCT_PFX_PLAY_HDR *loop;
  65.  struct STRUCT_PFX_PLAY_HDR *next;
  66. } PFX_PLAY_HDR;
  67.  
  68.  
  69.